Contents | Index | < Browse | Browse >

LETTERputcharULETTER Puts a character into the standard output stream.

Overview
#include <stdio.h>

r = putchar(ch);

int r;
int ch;

Portability
ANSI

Description
Writes the character "ch" to the standard output stream "stdout".

Returns
The character written or EOF in an error occured.

See also
putc , fputc